Wed Dec 22 01:17:44 2004 Jonathan Blandford <jrb@redhat.com>
* queryloaders.c (main): print out the version and binary name in
the header comment. Problem reported by Seth Nickell.
+Wed Dec 22 01:17:44 2004 Jonathan Blandford <jrb@redhat.com>
+
+ * queryloaders.c (main): print out the version and binary name in
+ the header comment. Problem reported by Seth Nickell.
+
2004-12-16 Matthias Clasen <mclasen@redhat.com>
* === Released 2.6.0 ===
int main (int argc, char **argv)
{
gint i;
+ gchar *prgname;
#ifdef G_OS_WIN32
gchar *libdir;
#define PIXBUF_LIBDIR libdir
#endif
-
+ prgname = g_get_prgname ();
g_printf ("# GdkPixbuf Image Loader Modules file\n"
- "# Automatically generated file, do not edit\n"
- "#\n");
+ "# Automatically generated file, do not edit\n"
+ "# Created by %s from gtk+-%s\n"
+ "#\n",
+ (prgname ? prgname : "gdk-pixbuf-query-loaders"),
+ GDK_PIXBUF_VERSION);
if (argc == 1) {
#ifdef USE_GMODULE